home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / dlconfig.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  33 lines

  1. /* RCSVER $Id: dlconfig.sql,v 1.5 2000-03-22 16:48:21-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        dlconfig.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the dlconfig table. This table contains the 
  9. *        parameters necessary for generating the fb config
  10. *        files and downloading the changes to the fareboxes.
  11. *        This is only for the CHC side, i.e., from the CHC to the
  12. *        GRS.           
  13. * Changes:
  14. ************************************************************************* */
  15. CREATE TABLE dlconfig
  16. (
  17.     pupdates_dir    VARCHAR2(80),    /* Directory where program updates */
  18.                     /*   are kept (NOT the download dir */
  19.     config_dir    VARCHAR2(80),    /* Directory for config file */
  20.                     /*   generation */
  21.     probe_dir    VARCHAR2(80),    /* Directory where probed data files */
  22.                     /*   are retrieved from - there */
  23.                     /*   should be a subdirectory for */
  24.                     /*   each farebox */
  25.     dl_dir        VARCHAR2(80),    /* Directory where the files */
  26.                     /*   to be downloaded are moved - */
  27.                     /*   there should be one subdir */
  28.                     /*   for every farebox */
  29.     pcopy_dir     VARCHAR2(80),    /* Directory on CHC where probe files */
  30.                     /*   are copied and kept */
  31.     use_zip    NUMBER(1)    /* Download zip files (=1) or text files (=0) */
  32. );
  33.